home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / libmat.lha / src / test.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  151b  |  12 lines

  1. #include <matrix.h>
  2. main()
  3. {
  4.     Matrix A(4);
  5.     Matrix B(4);
  6.     A.read();
  7.     printf("det=%g\n",det(A));
  8.     B=gauss(A);
  9.     printf("det=%g\n",det(B));
  10.     B.print();
  11. }
  12.